-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(hermes): add metrics #1105
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 2 Ignored Deployments
|
pub addr: SocketAddr, | ||
#[arg(default_value = DEFAULT_RPC_LISTEN_ADDR)] | ||
#[arg(env = "RPC_LISTEN_ADDR")] | ||
pub listen_addr: SocketAddr, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these were not matching the cli args
7c5f2ba
to
61f72b0
Compare
# Setup LibP2P. Unfortunately the dependencies required by libp2p are shared | ||
# with the dependencies required by many Solana components. This means that we | ||
# would have to use the same version of libp2p as solana. Luckily we don't need | ||
# to worry about this until we want to hoist the libp2p portion of Hermes into | ||
# Rust land. | ||
libp2p = { version = "0.42.2", features = [ | ||
"gossipsub", | ||
"identify", | ||
"mplex", | ||
"noise", | ||
"secp256k1", | ||
"websocket", | ||
"yamux", | ||
]} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not used anymore
61f72b0
to
0dd441e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice!
Co-authored-by: Reisen <[email protected]>
8260478
to
c6dbf60
Compare
No description provided.